home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / TERM32._B_ < prev    next >
Text File  |  1997-05-22  |  1KB  |  44 lines

  1. #
  2. # Borland makefile for TERM [Win32]
  3. # Requires WSC32.LIB, MIO32.LIB, & XYDRIV.LIB
  4. #
  5. # To use: "make -fterm32._B_"
  6. #
  7.  
  8. CCFLAGS = -c -DWIN32
  9.  
  10. term.exe: term.res term.obj term.def \
  11.           about.obj line.obj config.obj menu.obj accept.obj ansi.obj \
  12.           paint.obj sioerror.obj mio32.lib wsc32.lib xydriv32.lib
  13.   tlink32 -Tpe -ax c0w32 @term.rsp,term,term,wsc32.lib mio32.lib xydriv32.lib cw32 import32,term,term
  14.  
  15. term.res: term.rc
  16.     brcc32 -dWIN32 term.rc
  17.  
  18. about.obj: about.c about.h
  19.    bcc32 $(CCFLAGS)  about.c
  20.  
  21. accept.obj: accept.c accept.h
  22.    bcc32 $(CCFLAGS)  accept.c
  23.  
  24. ansi.obj: ansi.c ansi.h
  25.    bcc32 $(CCFLAGS)  ansi.c
  26.  
  27. term.obj: term.c term.h wsc.h
  28.    bcc32 $(CCFLAGS)  term.c
  29.  
  30. config.obj: config.c config.h wsc.h
  31.     bcc32 $(CCFLAGS)  config.c
  32.  
  33. paint.obj: paint.c paint.h wsc.h
  34.     bcc32 $(CCFLAGS)  paint.c
  35.  
  36. line.obj: line.c line.h sioerror.h
  37.     bcc32 $(CCFLAGS)  line.c
  38.  
  39. menu.obj: menu.c menu.h sioerror.h
  40.     bcc32 $(CCFLAGS)  menu.c
  41.  
  42. sioerror.obj: sioerror.c sioerror.h sioerror.h
  43.     bcc32 $(CCFLAGS)  sioerror.c
  44.